home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-21 | 738 b | 36 lines | [TEXT/R*ch] |
- /*
- PropertyValue_pd.cp
- © Bob Boylan 1996
-
- Revision History
- MacHack 1996 initial creation
- */
- #include "PropertyValue_pd.h"
-
- // ----------------------------------------------------
- // ctors
- //
- PropertyValue_pd::PropertyValue_pd( )
- {}
- PropertyValue_pd::PropertyValue_pd( PropertyValue_pd &inOther )
- {
- _PropID = inOther._PropID;
- _Value = inOther._Value;
- _PropertyName = inOther._PropertyName;
-
- }
- PropertyValue_pd::PropertyValue_pd( DescType inPropertyID,
- Clone_ut<StAEDescriptor> inValue,
- string & inPropertyName )
- : _PropID( inPropertyID ),
- _Value( inValue ),
- _PropertyName( inPropertyName )
- {
-
- }
- // -------------------------------------------------
- // dtor
- //
- PropertyValue_pd::~PropertyValue_pd()
- {}
-